* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
font-family: 'my font', sans-serif;
}
@font-face {
  font-family: 'my font';
  src: url(fonts/Quicksand-Regular.ttf);
}
body {
    background-color: #f5f5f5;
    color: #333;
}

/* Cart notification styling */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 5px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
}


.cart-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    color: white;
     gap: 10px;
    
}

.notification-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}

/* Address Section Styles for Cake Customization */
.address-section-custom {
    margin-top: 20px;
    background-color: rgba(180, 84, 80, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid rgba(180, 84, 80, 0.3);
}

.address-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.address-status-custom {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid rgb(255, 255, 255);
    font-weight: 600;
}

.address-info-custom {
    display: flex;
    gap: 15px;
    background-color: #b85450;
    padding: 15px;
    border-radius: 6px;
}

.location-icon-custom {
    font-size: 24px;
    line-height: 1;
}

.address-details-custom {
    flex: 1;
}

.customer-name-custom {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: white;
}

.city-custom {
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
    font-size: 14px;
}

.address-line-custom {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
    color: white;
}

.contact-info-custom {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 12px;
}

.phone-info-custom,
.email-info-custom {
    font-size: 12px;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

.edit-address-btn-custom {
    background-color: #ffffff;
    border: none;
    color: rgb(0, 0, 0);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.edit-address-btn-custom:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 117, 122, 0.3);
}

/* Success Notification for Customization */
.success-notification-custom {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
}

.success-notification-custom.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        border-color: transparent;
    }
    50% { 
        transform: scale(1.02);
        border: 2px solid #d4757a;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .address-section-custom {
        padding: 15px;
    }
    
    .address-header-custom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .address-status-custom {
        align-self: flex-end;
    }
    
    .address-info-custom {
        flex-direction: column;
        padding: 12px;
    }
    
    .location-icon-custom {
        font-size: 20px;
    }
    
    .edit-address-btn-custom {
        width: 100%;
    }
}

/* Required asterisk styling */
.required {
    color: #d9534f;
    font-weight: bold;
    margin-left: 2px;
}

.container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Remove photo button styling */
.remove-photo-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    z-index: 10;
}

.remove-photo-btn:hover {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.05);
}

.remove-photo-btn i {
    margin-right: 5px;
}

/* Cake description textarea styling */
.cake-description-section {
    background: #b85450;
    border-radius: 8px;
    padding: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.cake-description-section:focus-within {
    border-color: #b85450;
    box-shadow: 0 0 0 3px rgba(184, 84, 80, 0.1);
}

.cake-description-textarea {
    width: 100%;
    height: 120px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
  
}

.cake-description-textarea:focus {
    outline: none;
    border-color: #b85450;
    box-shadow: 0 0 0 3px rgba(184, 84, 80, 0.1);
}

.char-count-desc {
    text-align: right;
    font-size: 11px;
    color: #ffffff;
    margin-top: 5px;
    font-weight: bold;
}

/* Email input styling */
.email-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #b85450;
    box-shadow: 0 0 0 3px rgba(184, 84, 80, 0.1);
}

.left-panel {
    flex: 1;
    background-color: #b85450;
    color: white;
    padding: 30px;
}

.cake-preview {
    margin-bottom: 40px;
}

.cake-image {
    width: 100%;
    height: 300px;
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #b85450;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-left: 50px;
}

.back-btn:hover {
    background: #a04743;
    transform: translateX(-2px);
}

.back-btn i {
    font-size: 16px;
}

.delivery-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.delivery-option {
    flex: 1;
    padding: 15px;
    border: 2px solid #b85450;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.delivery-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(184, 84, 80, 0.2);
}

.delivery-option.active {
    background: #82a8fa;
    color: rgb(10, 9, 9);
}

.delivery-option h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000000;
}

.delivery-option p {
    font-size: 12px;
    color: #000000;
}

.delivery-option.active p {
    color: rgb(0, 0, 0);
}

.submit-section {
    margin-top: 30px;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(45deg, #b85450);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 84, 80, 0.3);
    margin-left: 190px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 84, 80, 0.4);
}

/* Date input styling */
.date-input-wrapper {
    position: relative;
    width: 100%;
}

.date-input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.date-input:focus {
    outline: none;
    border-color: #b85450;
    box-shadow: 0 0 0 3px rgba(184, 84, 80, 0.1);
}

.date-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #b85450;
    pointer-events: none;
    font-size: 16px;
}

.delivery-note {
    font-size: 11px;
    color: #ffffff;
    margin-top: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Dropdown styling */
.dropdown-wrapper {
    position: relative;
    width: 100%;
}

.form-dropdown {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-dropdown:focus {
    outline: none;
    border-color: #b85450;
    box-shadow: 0 0 0 3px rgba(184, 84, 80, 0.1);
}

.dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #b85450;
    pointer-events: none;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.form-dropdown:focus + .dropdown-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* Multiselect dropdown styling */
.multiselect-wrapper {
    position: relative;
    width: 100%;
}

.multiselect-dropdown {
    position: relative;
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.multiselect-dropdown:hover {
    border-color: #b85450;
}

.multiselect-selected {
    padding: 12px;
    font-size: 14px;
    color: #999;
    user-select: none;
    position: relative;
}

.multiselect-selected::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #b85450;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.multiselect-dropdown.active .multiselect-selected::after {
    transform: translateY(-50%) rotate(180deg);
}

.multiselect-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #b85450;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.multiselect-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #eee;
}

.multiselect-option:hover {
    background: #f8f9fa;
}

.multiselect-option:last-child {
    border-bottom: none;
}

.multiselect-option input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    transform: scale(1.2);
}

.multiselect-option span {
    font-size: 14px;
    color: #333;
    user-select: none;
}

.multiselect-option input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.multiselect-option:has(input[type="checkbox"]:disabled) {
    opacity: 0.5;
    cursor: not-allowed;
}

.multiselect-option:has(input[type="checkbox"]:disabled):hover {
    background: transparent;
}

.placeholder-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, #f0f0f0 25%, transparent 25%),
        linear-gradient(-45deg, #f0f0f0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #f0f0f0 75%),
        linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail.active {
    border-color: #fff;
    box-shadow: 0 0 0 2px #b85450;
    transform: translateY(-2px);
}

.right-panel {
    flex: 1;
    padding: 20px;
    background: #f9f9f9;
}

.customization-header {
    background: #f0f0f0;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customization-header h1 {
    color: #d4a5a3;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.upload-section {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4a5a3;
    font-size: 12px;
}

.upload-btn {
    width: 25px;
    height: 25px;
    background: #d4a5a3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 400px;
    transition: all 0.3s ease;
    padding-left: 10px;
     padding-right: 10px;
}

.upload-btn:hover {
    background: #b85450;
    transform: scale(1.1);
}

.form-section {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #000000;
    font-size: 14px;
}

.form-label1 {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fffefe;
    font-size: 14px;
}

.shape-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.shape-option {
    padding: 12px;
    border: 2px solid #b85450;
    background: #b85450;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
}

.shape-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(184, 84, 80, 0.3);
}

.shape-option.active {
    background: white;
    color: #b85450;
    box-shadow: 0 4px 8px rgba(184, 84, 80, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row.three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

/* Quantity selector styling */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.quantity-selector:focus-within {
    border-color: #b85450;
    box-shadow: 0 0 0 3px rgba(184, 84, 80, 0.1);
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #b85450;
    flex-shrink: 0;
}

.qty-btn:hover {
    background: #b85450;
    color: white;
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-input {
    flex: 1;
    height: 40px;
    text-align: center;
    border: none;
    background: white;
    font-size: 16px;
    font-weight: bold;
    outline: none;
    color: #333;
    min-width: 0;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input:focus {
    background: #f8f9fa;
}

.message-note {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.message-textarea {
    width: 100%;
    height: 100px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-size: 14px;
    transition: all 0.3s ease;
}

.message-textarea:focus {
    outline: none;
    border-color: #b85450;
    box-shadow: 0 0 0 3px rgba(184, 84, 80, 0.1);
}

.char-count {
    text-align: right;
    font-size: 11px;
    color: #666;
    margin-top: 5px;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.action-btn {
    padding: 12px 8px;
    border: 2px solid #b85450;
    border-radius: 20px;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.3s ease;
    background: #b85450;
    color: white;
    text-align: center;
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(184, 84, 80, 0.3);
}

.action-btn.active {
    background: white;
    color: #b85450;
    box-shadow: 0 4px 8px rgba(184, 84, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        margin: 10px;
    }

    .customization-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .customization-header h1 {
        margin-right: 0;
    }

    .upload-btn {
        margin-left: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-row.three-column {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .shape-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .action-buttons {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .action-btn {
        font-size: 10px;
        padding: 10px 6px;
    }

    .delivery-options {
        flex-direction: column;
        gap: 10px;
    }

    .dropdown-wrapper {
        width: 100%;
    }

    .multiselect-wrapper {
        width: 100%;
    }

    .submit-btn {
        margin-left: 0;
        margin: 20px auto;
        display: block;
    }

    .cart-notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }

    .cart-notification.show {
        transform: translateY(0);
    }
}



/* === NAVIGATION BAR === */
.sticky-nav {
    background-color: #f7f2b7;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ccc;
}

.nav-logo {
    width: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.navbar {
    list-style: none;
    justify-content: space-between;
    display: flex;
    gap: 30px;
    padding-right: 75px;
    margin: 0;
    font-size: 20px;
}

.navbar li {
    display: flex;
}

.navbar li a {
    text-decoration: none;
    color: #231955;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 16px;
    transition: 0.3s;
}

.navbar li a:hover {
    color: #ff6b6b;
    border-bottom: 2px solid #ff6b6b;
}

/* === DROPDOWN MENU === */
.dropbtn {
    border: none;
    background-color: #f7f2b7;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
}

.dropdown {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #231955;
}

.dropdownContent {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdownContent a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdownContent a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdownContent {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #ff6b6b;
    border-bottom: 2px solid #0073e6;
}

/* === SOCIAL ICONS === */
nav {
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 0;
}

.social-icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons i,
.user-icons i {
    font-size: 28px;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.social-icons a,
.user-icons a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.phone-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.phone-number {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.social-icons i:hover,
.user-icons i:hover {
    transform: scale(1.1);
    color: #007bff;
}

.fa-facebook:hover {
    color: #1877f2;
}

.fa-square-instagram:hover {
    color: #e4405f;
}

.fa-phone:hover {
    color: #28a745;
}

.fa-cart-shopping:hover {
    color: #ffc107;
}

.fa-circle-user:hover {
    color: #6f42c1;
}

@media (max-width: 768px) {
    .social-icons-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 3%;
    }
    
    .social-icons,
    .user-icons {
        gap: 20px;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .social-icons i,
    .user-icons i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .phone-number {
        display: none;
    }
    
    .social-icons,
    .user-icons {
        gap: 15px;
    }
}

.social-icons i:hover,
.fa-circle-user:hover,
.fa-cart-shopping:hover{
    transform: scale(1.2);
    color: #ff6b6b;
}

@media (max-width: 600px) {
    .social-icons i,
    .fa-circle-user {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
}

.menu-toggle {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    background: #231955;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 5px;
}

.quantity-selector {
    max-width: 150px;
}

.multiselect-options::-webkit-scrollbar {
    width: 6px;
}

.multiselect-options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.multiselect-options::-webkit-scrollbar-thumb {
    background: #b85450;
    border-radius: 3px;
}

.multiselect-options::-webkit-scrollbar-thumb:hover {
    background: #a04743;
}

.shape-option:disabled,
.thumbnail:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.form-section .disabled {
    opacity: 0.6;
    pointer-events: none;
}

.qty-btn:focus,
.shape-option:focus,
.action-btn:focus {
    outline: 2px solid #b85450;
    outline-offset: 2px;
}

.multiselect-dropdown:focus-within {
    border-color: #b85450;
    box-shadow: 0 0 0 3px rgba(184, 84, 80, 0.1);
}



@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.multiselect-options[style*="block"] {
    animation: slideDown 0.3s ease;
}

/* Button spacing and sizing */
.action-buttons {
    margin: 20px 0;
}

.action-btn {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form validation styles */
.form-dropdown:invalid,
.email-input:invalid,
.date-input:invalid {
    border-color: #dc3545;
}

.form-dropdown:valid,
.email-input:valid,
.date-input:valid {
    border-color: #28a745;
}

/* Loading spinner for form submission */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.submit-btn:disabled::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .cart-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .form-row {
        flex-direction: column;
    }

    .action-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .shape-options {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .delivery-options {
        flex-direction: column;
        gap: 15px;
    }

    
}
.account-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.account-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.account-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.account-dropdown-content a:hover {
    background-color: #f1f1f1;
}

.account-dropdown:hover .account-dropdown-content {
    display: block;
}

.account-dropdown .fa-circle-user {
    font-size: 20px;
    color: inherit;
    transition: color 0.3s ease;
}

.account-dropdown:hover .fa-circle-user {
    color: #007bff;
}



/* Footer Styles */
.footer {
  background-color: #f7f2b7;  
  padding: 40px 20px 10px;
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  width: 100vw;
  position: relative;
  left: 0;
  right: 0;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
  margin-bottom: 20px;
  margin-right: 20px;  
}

.footer-logo img {
  width: 50px;  
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.footer-logo h3 {
  color: #e88e8e;  
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 2;
}

.links-column, .footer-column {
    margin-top: 30px;
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  margin-left: 30px;
}

.links-column a, .footer-column a {
  color: #555; 
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-column a:hover, .footer-column a:hover {
  color: #e88e8e; 
}

nav {
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 0;
}

.social-icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon styling */
.social-icons i,
.user-icons i {
    font-size: 28px;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.social-icons a,
.user-icons a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

/* Phone container styling */
.phone-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.phone-number {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

/* Hover effects */
.social-icons i:hover,
.user-icons i:hover {
    transform: scale(1.1);
    color: #007bff;
}

.fa-facebook:hover {
    color: #1877f2;
}

.fa-square-instagram:hover {
    color: #e4405f;
}

.fa-phone:hover {
    color: #28a745;
}

.fa-cart-shopping:hover {
    color: #ffc107;
}

.fa-circle-user:hover {
    color: #6f42c1;
}


.copyright {
  text-align: center;
  padding: 15px 0;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #eee;
  margin-top: 50px;
}

/* Media Query for max-width 968px */
@media (max-width: 968px) {
  .footer-content {
      flex-direction: column;
      gap: 30px;
  }

  .footer-links {
      flex-wrap: wrap;
      gap: 30px;
  }
}

/* Media Query for max-width 768px */
@media (max-width: 768px) {
  /* Header Layout */
  .header {
      flex-direction: column;
      padding: 15px;
  }

  .header-right {
      margin-top: 15px;
  }

  .nav-menu {
      margin: 15px 0;
      flex-wrap: wrap;
      justify-content: center;
  }

  .social-icons-header {
      margin-bottom: 10px;
  }

  /* Footer Layout */
  .footer-container {
      flex-direction: column;
  }

  .footer-logo,
  .footer-column {
      min-width: 100%;
  }

  /* Navbar and Burger */
  .navbar {
      display: none;
      flex-direction: column;
      background-color: #f7f2b7;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      text-align: center;
      padding: 10px 0;
      margin-right: 30px;
  }

  .menu-toggle:checked + .burger + .navbar {
      display: flex;
  }

  .burger {
      display: flex;
  }

  /* Cake Sizes Section */
  .cake-sizes {
      flex-direction: column;
      align-items: center;
  }

  /* Footer Links */
  .footer-links {
      flex-direction: column;
      gap: 20px;
  }
}
/* Notification Styles */
.notification-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.account-dropdown-content {
    min-width: 350px;
    max-width: 400px;
}

.notification-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.notification-header span {
    font-weight: 600;
    color: #333;
}

.mark-all-read {
    background: none;
    border: none;
    color: #d4757a;
    font-size: 12px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.mark-all-read:hover {
    background: #f8f9fa;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.notification-content {
    flex: 1;
    cursor: pointer;
}

.notification-item:hover {
    background: #f8f9fa;
}

.notification-item.unread {
    background: #fff8f0;
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
}

.notification-message {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.notification-time {
    font-size: 11px;
    color: #999;
}

.notification-order {
    font-size: 12px;
    color: #d4757a;
    font-weight: 600;
    margin-bottom: 3px;
}

.delete-notification-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.delete-notification-btn:hover {
    transform: scale(1.1);
    color: #c0392b;
}

.no-notifications {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.account-links {
    padding-top: 10px;
}

.account-links a {
    display: block;
    padding: 10px 15px;
}

/* Desktop layout: Push user icons (cart and notifications) to the right */
@media (min-width: 769px) {
    .sticky-nav {
        justify-content: space-between;
    }
    .navbar {
        padding-right: 0;
    }

    .account-dropdown-content {
        position: fixed !important;
        right: 0px !important;
        min-width: 350px;
        max-width: 400px;
        left: auto !important;
    }
}

/* Center modal buttons in mobile view */
@media (max-width: 768px) {
    #orderConfirmationModal div[style*="display: flex"] {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #orderConfirmationModal button {
        margin-left: 0 !important;
        width: 100%;
        max-width: 200px;
    }

    .account-dropdown-content {
        position: fixed !important;
        right: 0px !important;
        min-width: 350px;
        max-width: 400px;
        left: auto !important;
    }
}


body {
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #fff;
    box-sizing: border-box;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}


.header {
    background: linear-gradient(135deg, #f8c8d4 0%, #f5b2c4 100%);
    padding: 60px 0;
    text-align: center;
}

.logo {
    margin-bottom: 20px;
}

.logo-image {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #f8c8d4;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
    font-weight: 300;
}

.header-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}


.owner-section {
    padding: 80px 0;
    background-color: #fff;
}

.owner-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.owner-image {
    flex: 0 0 300px;
}

.owner-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.owner-info {
    flex: 1;
}

.owner-info h2 {
    font-size: 2.2rem;
    color: #e74c3c;
    margin-bottom: 10px;
    font-weight: 300;
}

.owner-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 25px;
    font-style: italic;
}

.owner-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}


.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8c8d4 0%, #f5b2c4 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 30px;
    font-weight: 300;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .owner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .owner-image {
        flex: none;
        max-width: 250px;
    }
    
    .owner-info h2 {
        font-size: 1.8rem;
    }
    
    .owner-description {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 40px 0;
    }
    
    .owner-section,
    .offer-section {
        padding: 50px 0;
    }
}
/* === NAVIGATION BAR === */
.sticky-nav {
    background-color: #f7f2b7;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ccc;
}

.nav-logo {
    width: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.navbar {
    list-style: none;
    justify-content: space-between;
    display: flex;
    gap: 30px;
    padding-right: 75px;
    margin: 0;
    font-size: 20px;
}

.navbar li {
    display: flex;
}

.navbar li a {
    text-decoration: none;
    color: #231955;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 16px;
    transition: 0.3s;
}

.navbar li a:hover {
    color: #ff6b6b;
    border-bottom: 2px solid #ff6b6b;
}

.dropbtn {
    border: none;
    background-color: #f7f2b7;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
}

.dropdown {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #231955;
}

.dropdownContent {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdownContent a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdownContent a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdownContent {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #ff6b6b;
    border-bottom: 2px solid #0073e6;
}

.social-icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons i,
.user-icons i {
    font-size: 28px;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.social-icons a,
.user-icons a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.phone-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.phone-number {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.social-icons i:hover,
.user-icons i:hover {
    transform: scale(1.1);
    color: #007bff;
}

.fa-facebook:hover {
    color: #1877f2;
}

.fa-square-instagram:hover {
    color: #e4405f;
}

.fa-phone:hover {
    color: #28a745;
}

.fa-cart-shopping:hover {
    color: #ffc107;
}

.fa-circle-user:hover {
    color: #6f42c1;
}

@media (max-width: 768px) {
    .social-icons-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 3%;
    }
    
    .social-icons,
    .user-icons {
        gap: 20px;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .social-icons i,
    .user-icons i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .phone-number {
        display: none;
    }
    
    .social-icons,
    .user-icons {
        gap: 15px;
    }
}

.menu-toggle {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    background: #231955;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 5px;
}

.account-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.account-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.account-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.account-dropdown-content a:hover {
    background-color: #f1f1f1;
}

.account-dropdown:hover .account-dropdown-content {
    display: block;
}

.account-dropdown .fa-circle-user {
    font-size: 20px;
    color: inherit;
    transition: color 0.3s ease;
}

.account-dropdown:hover .fa-circle-user {
    color: #007bff; 
}

/* Footer Styles */
.footer {
  background-color: #f7f2b7;  
  padding: 40px 20px 10px;
  margin-top: auto;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  position: relative;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-logo {
  flex: 1;
  min-width: 300px;
  margin-bottom: 20px;
  margin-right: 20px;  
}

.footer-logo img {
  width: 50px;  
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.footer-logo h3 {
  color: #e88e8e;  
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 2;
}

.links-column, .footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
  margin-left: 30px;
}

.links-column a, .footer-column a {
  color: #555;  
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.links-column a:hover, .footer-column a:hover {
  color: #e88e8e;  
}

nav {
    width: 100%;
    background-color: #f8f9fa;
    padding: 10px 0;
}

.social-icons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon styling */
.social-icons i,
.user-icons i {
    font-size: 28px;
    color: #333;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.social-icons a,
.user-icons a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

/* Phone container styling */
.phone-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.phone-number {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

/* Hover effects */
.social-icons i:hover,
.user-icons i:hover {
    transform: scale(1.1);
    color: #007bff;
}

.fa-facebook:hover {
    color: #1877f2;
}

.fa-square-instagram:hover {
    color: #e4405f;
}

.fa-phone:hover {
    color: #28a745;
}

.fa-cart-shopping:hover {
    color: #ffc107;
}

.fa-circle-user:hover {
    color: #6f42c1;
}

.copyright {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 12px;
  color: #777;
}
.copyright {
  text-align: center;
  padding: 15px 0;
  font-size: 12px;
  color: #777;
  border-top: 1px solid #eee;
  margin-top: 20px;
}

/* Media Query for max-width 968px */
@media (max-width: 968px) {
  .footer-content {
      flex-direction: column;
      gap: 30px;
  }

  .footer-links {
      flex-wrap: wrap;
      gap: 30px;
  }
}

/* Media Query for max-width 768px */
@media (max-width: 768px) {
  /* Header Layout */
  .header {
      flex-direction: column;
      padding: 15px;
  }

  .header-right {
      margin-top: 15px;
  }

  .nav-menu {
      margin: 15px 0;
      flex-wrap: wrap;
      justify-content: center;
  }

  .social-icons-header {
      margin-bottom: 10px;
  }

  /* Footer Layout */
  .footer-container {
      flex-direction: column;
  }

  .footer-logo,
  .footer-column {
      min-width: 100%;
  }

  /* Navbar and Burger */
  .navbar {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100%;
      background-color: #f7f2b7;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 200px 10px 10px;
      transition: left 0.3s ease;
      z-index: 1000;
      gap:10px
  }

  .menu-toggle:checked ~ .navbar {
      left: 0;
  }

  .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1001;
  }

  .menu-toggle:checked ~ .overlay {
      display: block;
  }

  .burger {
      display: flex;
      order: -1; /* Move burger to the left */
      margin-right: 20px;
      z-index: 1001;
  }

  .menu-toggle:checked ~ .burger span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle:checked ~ .burger span:nth-child(2) {
      opacity: 0;
  }

  .menu-toggle:checked ~ .burger span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }

  .sticky-nav {
      justify-content: space-between;
      align-items: center;
  }

  .logo-container {
      flex: 1;
      text-align: center;
  }

  /* Keep social icons visible on mobile */
  

  /* Cake Sizes Section */
  .cake-sizes {
      flex-direction: column;
      align-items: center;
  }

  /* Footer Links */
  .footer-links {
      flex-direction: column;
      gap: 20px;
  }
}
/* Notification Styles */
.notification-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.account-dropdown-content {
    min-width: 350px;
    max-width: 400px;
}

.notification-section {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.notification-header span {
    font-weight: 600;
    color: #333;
}

.mark-all-read {
    background: none;
    border: none;
    color: #d4757a;
    font-size: 12px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.mark-all-read:hover {
    background: #f8f9fa;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}
.notification-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.notification-content {
    flex: 1;
    cursor: pointer;
}

.notification-item:hover {
    background: #f8f9fa;
}

.notification-item.unread {
    background: #fff8f0;
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
}

.notification-message {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.notification-time {
    font-size: 11px;
    color: #999;
}

.notification-order {
    font-size: 12px;
    color: #d4757a;
    font-weight: 600;
    margin-bottom: 3px;
}

.delete-notification-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
}

.delete-notification-btn:hover {
    transform: scale(1.1);
    color: #c0392b;
}

.no-notifications {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.account-links {
    padding-top: 10px;
}

.account-links a {
    display: block;
    padding: 10px 15px;
}
/* Pricing Section Styles */

.pricing-section {
    margin-top: 30px;
    background: #b85450;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b85450;
}

.pricing-header h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.pricing-row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    margin-bottom: -2%;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.pricing-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: bold;
}

.pricing-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #b85450;
}

.pricing-total .pricing-row {
    border-bottom: none;
    padding: 0;
}

.pricing-total .pricing-label {
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-total .pricing-value {
    font-size: 22px;
    color: #ffffff;
    font-weight: bold;
}

.pricing-note {
    margin-top: 15px;
    padding: 12px;
    background: #fff8f0;
    border-left: 4px solid #ffa726;
    border-radius: 4px;
}

.pricing-note p {
    margin: 0;
    font-size: 11px;
    color: #666;
    line-height: 1.5;
}

.pricing-note strong {
    color: #d84315;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .pricing-header h3 {
        font-size: 16px;
    }
    
    .pricing-label {
        font-size: 13px;
    }
    
    .pricing-value {
        font-size: 14px;
    }
    
    .pricing-total .pricing-label {
        font-size: 16px;
    }
    
    .pricing-total .pricing-value {
        font-size: 20px;
    }
    
    .pricing-note p {
        font-size: 10px;
    }
}

.pricing-note strong {
    color: #d84315;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-section {
        padding: 15px;
        margin-top: 20px;
    }
    
    .pricing-header h3 {
        font-size: 16px;
    }
    
    .pricing-label {
        font-size: 13px;
    }
    
    .pricing-value {
        font-size: 14px;
    }
    
    .pricing-total .pricing-label {
        font-size: 16px;
    }
    
    .pricing-total .pricing-value {
        font-size: 20px;
    }
}